home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Development / BBEdit 8.2.1 demo.dmg / BBEdit.app / Contents / Resources / Default Support Folder / HTML Templates / Table Of Contents.tmpl < prev   
Encoding:
Text File  |  2005-05-10  |  2.1 KB  |  83 lines

  1. <!--
  2.     This example page shows how to use named anchors to implement a
  3.     Table Of Contents for easy navigation within a single page.
  4. -->
  5.  
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  7.         "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
  8. <html>
  9. <head>
  10.  
  11. <!--
  12.     Notice that the "TITLE" here will be replaced with whatever you
  13.     type into the "Title" section of the "New Document..." dialog.
  14. -->
  15.  
  16. <title>#TITLE#</title>
  17.  
  18. </head>
  19. <body>
  20.  
  21. <h1>Table Of Contents Example</h1>
  22.  
  23. <p>
  24. This example page shows how to use named anchors to implement a Table Of
  25. Contents for easy navigation within a single page.
  26. </p>
  27.     
  28. <h2><a name="TOC">Table Of Contents:</a></h2>
  29. <ul type=disc>
  30.     <li><a href="#whatis">What Is BBEdit?</a></li>
  31.     <li><a href="#whygreat">Why Is BBEdit So Great?</a></li>
  32.     <li><a href="#whouses">Who Uses BBEdit?</a></li>
  33.     <li><a href="#moreinfo">How Can I Find Out More?</a></li>
  34. </ul>
  35.  
  36. <!-- The <HR> tag creates a horizontal rule, which is a convenient section divider -->
  37. <hr>
  38.  
  39. <!--
  40.     For each section, there is a named anchor tag, then the contents. The
  41.     section heading is enclosed in the named anchor tag, so that when the
  42.     user navigates to this section, the heading will appear at the top of
  43.     the screen.
  44.     
  45.     For the user's convenience, there's also a link back to the main table
  46.     of contents, and a horizontal rule separator.
  47.     
  48.     If you click on the function popup (the icon just to the right of the
  49.     pencil), BBEdit will show you all of the named anchors and headings in a
  50.     popup menu. You can jump straight to a named anchor or heading simply by
  51.     choosing it from this menu. Note that headings appear in the popup menu
  52.     with the heading level in the left-hand column; for example level two
  53.     headings have a "2" in the menu.
  54. -->
  55.  
  56. <h2><a name="whatis">What Is BBEdit?</a></h2>
  57. <p>
  58. <a href="#TOC">Table Of Contents</a>
  59. </p>
  60.  
  61. <hr>
  62.  
  63. <h2><a name="whygreat">Why Is BBEdit So Great?</a></h2>
  64. <p>
  65. <a href="#TOC">Table Of Contents</a>
  66. </p>
  67. <hr>
  68.  
  69. <h2><a name="whouses">Who Uses BBEdit?</a></h2>
  70. <p>
  71. <a href="#TOC">Table Of Contents</a>
  72. </p>
  73. <hr>
  74.  
  75. <h2><a name="moreinfo">How Can I Find Out More?</a></h2>
  76. <p>
  77. <a href="#TOC">Table Of Contents</a>
  78. </p>
  79. <hr>
  80.  
  81. </body>
  82. </html>
  83.